home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Kit PC World De Ampliacion De Windows 95
/
Kit PC World de ampliacion de Windows 95.iso
/
lotus
/
lotus031.dsk
/
215.LSS
< prev
next >
Wrap
Text File
|
1995-08-09
|
1KB
|
62 lines
Use "av_mod"
Sub Initialize
ClientMainWinClass = "FLWApp"
ClientID = AN_AVERY
ClientModName = "av_mod"
ClientLotusAppID = "FLW"
ShowMeModName = "215"
AnimVersionNum = .58
NumFramesThisAnim = 6
AnimationType = "QuickDemo"
SampleFile = "edittext.prz"
AnimName = GetString( "2150000", IResult% )
End Sub
Public Sub ShowMe (theNextStep As Integer)
GetCursorPos TempPos
CursorPosForStep(theNextStep) = TempPos
Select Case theNextStep
Case 1
StepsText = GetString( "2151001", IResult% )
X = DoWhereIs (DRAW_OBJ,"",4,0,0,0,ClientID)
ShowTextBubble StepsText, .2, .5, NorthEast
HideTextBubble
MoveToObjRel 20 , 50
DoMouse WM_LBUTTONDOWN%, 0
DoMouse WM_LBUTTONUP%, 0
Exit Sub
Case 2
X = DoWhereIs (DRAW_OBJ,"",4,0,0,0,ClientID)
DoMouse WM_LBUTTONDOWN%, 0
DoMouse WM_LBUTTONUP%, 0
Exit Sub
Case 3
StepsText = GetString( "2151002", IResult% )
ShowTextBubble StepsText, .1, .5, NorthEast
HideTextBubble
SendCtrlKeys "{HOME}", 100
Exit Sub
Case 4
SendTextKeys GetString( "2152004", IResult% ), 50
Exit Sub
Case 5
StepsText = GetString( "2151003", IResult% )
X = DoWhereIs (DRAW_OBJ,"",4,0,0,0,ClientID)
ShowTextBubble StepsText, .55, -.2, NorthEast
HideTextBubble
Exit Sub
Case 6
SendCtrlKeys "{ESC}", 100
Exit Sub
End Select
End Sub